instiki 0.10.0 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. data/CHANGELOG +174 -165
  2. data/README +68 -68
  3. data/app/controllers/admin_controller.rb +94 -94
  4. data/app/controllers/application.rb +135 -131
  5. data/app/controllers/file_controller.rb +129 -129
  6. data/app/controllers/wiki_controller.rb +354 -354
  7. data/app/helpers/application_helper.rb +68 -68
  8. data/app/models/author.rb +3 -3
  9. data/app/models/chunks/category.rb +33 -33
  10. data/app/models/chunks/chunk.rb +86 -86
  11. data/app/models/chunks/engines.rb +61 -54
  12. data/app/models/chunks/include.rb +41 -41
  13. data/app/models/chunks/literal.rb +31 -31
  14. data/app/models/chunks/nowiki.rb +28 -28
  15. data/app/models/chunks/test.rb +18 -18
  16. data/app/models/chunks/uri.rb +182 -182
  17. data/app/models/chunks/wiki.rb +141 -141
  18. data/app/models/file_yard.rb +58 -58
  19. data/app/models/page.rb +112 -112
  20. data/app/models/page_lock.rb +22 -22
  21. data/app/models/page_set.rb +89 -89
  22. data/app/models/revision.rb +123 -123
  23. data/app/models/web.rb +182 -176
  24. data/app/models/wiki_content.rb +207 -207
  25. data/app/models/wiki_service.rb +233 -233
  26. data/app/models/wiki_words.rb +23 -23
  27. data/app/views/admin/create_system.rhtml +83 -83
  28. data/app/views/admin/create_web.rhtml +69 -69
  29. data/app/views/admin/edit_web.rhtml +137 -136
  30. data/app/views/file/file.rhtml +18 -18
  31. data/app/views/file/import.rhtml +22 -22
  32. data/app/views/layouts/default.rhtml +86 -85
  33. data/app/views/markdown_help.rhtml +12 -12
  34. data/app/views/mixed_help.rhtml +6 -6
  35. data/app/views/navigation.rhtml +30 -30
  36. data/app/views/rdoc_help.rhtml +12 -12
  37. data/app/views/textile_help.rhtml +24 -24
  38. data/app/views/wiki/authors.rhtml +11 -11
  39. data/app/views/wiki/edit.rhtml +39 -39
  40. data/app/views/wiki/export.rhtml +12 -12
  41. data/app/views/wiki/feeds.rhtml +14 -14
  42. data/app/views/wiki/list.rhtml +64 -64
  43. data/app/views/wiki/locked.rhtml +23 -23
  44. data/app/views/wiki/login.rhtml +14 -14
  45. data/app/views/wiki/new.rhtml +31 -31
  46. data/app/views/wiki/page.rhtml +115 -115
  47. data/app/views/wiki/print.rhtml +14 -14
  48. data/app/views/wiki/published.rhtml +9 -9
  49. data/app/views/wiki/recently_revised.rhtml +26 -26
  50. data/app/views/wiki/revision.rhtml +103 -103
  51. data/app/views/wiki/rollback.rhtml +36 -36
  52. data/app/views/wiki/rss_feed.rhtml +22 -22
  53. data/app/views/wiki/search.rhtml +38 -38
  54. data/app/views/wiki/tex.rhtml +22 -22
  55. data/app/views/wiki/tex_web.rhtml +34 -34
  56. data/app/views/wiki/web_list.rhtml +18 -18
  57. data/app/views/wiki_words_help.rhtml +9 -9
  58. data/config/environment.rb +82 -82
  59. data/config/environments/development.rb +5 -5
  60. data/config/environments/production.rb +4 -4
  61. data/config/environments/test.rb +17 -17
  62. data/config/routes.rb +18 -18
  63. data/lib/active_record_stub.rb +31 -31
  64. data/lib/bluecloth_tweaked.rb +1127 -0
  65. data/lib/diff.rb +444 -444
  66. data/lib/instiki_errors.rb +14 -14
  67. data/lib/rdocsupport.rb +151 -151
  68. data/lib/redcloth_for_tex.rb +736 -736
  69. data/natives/osx/desktop_launcher/AppDelegate.h +18 -18
  70. data/natives/osx/desktop_launcher/AppDelegate.mm +109 -109
  71. data/natives/osx/desktop_launcher/Credits.html +15 -15
  72. data/natives/osx/desktop_launcher/English.lproj/MainMenu.nib/classes.nib +12 -12
  73. data/natives/osx/desktop_launcher/English.lproj/MainMenu.nib/info.nib +24 -24
  74. data/natives/osx/desktop_launcher/Info.plist +12 -12
  75. data/natives/osx/desktop_launcher/Instiki.xcode/project.pbxproj +592 -592
  76. data/natives/osx/desktop_launcher/Instiki_Prefix.pch +7 -7
  77. data/natives/osx/desktop_launcher/MakeDMG.sh +9 -9
  78. data/natives/osx/desktop_launcher/main.mm +14 -14
  79. data/natives/osx/desktop_launcher/version.plist +16 -16
  80. data/public/404.html +5 -5
  81. data/public/500.html +5 -5
  82. data/public/dispatch.rb +9 -9
  83. data/public/javascripts/edit_web.js +52 -52
  84. data/public/javascripts/prototype.js +336 -336
  85. data/public/stylesheets/instiki.css +222 -222
  86. data/script/breakpointer +4 -4
  87. data/script/server +93 -93
  88. metadata +4 -3
data/CHANGELOG CHANGED
@@ -1,165 +1,174 @@
1
- * 0.10.0:
2
- Ported to ActionPack
3
- RedCloth 3.0.3
4
- BlueCloth is phased out, Markdown is rendered by RedCloth
5
- Mix markup option understands both Textile and Markdown on the same page
6
- Instiki can serve static content (such as HTML or plain-text files) from ./public
7
- directory
8
- Much friendlier admin interface
9
- Wiki link syntax doesn't conflict with Textile hyperlink syntax. Therefore
10
- "textile link":LinkToSomePlace will not look insane.
11
- RSS feeds accept query parameters, sush as
12
- http://localhost:2500/wiki/rss_with_headlines?start=2005-02-18&end=2005-02-19&limit=10
13
- RSS feed with page contents for a password-protected web behaves as follows:
14
- if the web is published, RSS feed links to the published version of the web
15
- otherwise, the feed is not available
16
- Madeleine will check every hour if there are new commands in the log or 24 hours have
17
- passed since last snapshot, and take snapshot if either of these conditions is true
18
- Madeleine will also not log read-only operations, resulting in a better performance
19
- Wiki extracts (to HTML and plain text) will leave only the last extract file in ./storage
20
- Wiki search handles multibyte (UTF-8) characters correctly
21
- Local hyperlinks in published pages point to published pages [Michael DeHaan]
22
- Fixed a bug that sometimes caused all past revisions of a page to be "forgotten" on
23
- restart
24
- Fixed parsing of URIs with a port number (http://someplace.org:8080)
25
- Instiki will not fork itself on a *nix, unless explicitly asked to
26
- Instiki can bind to IPs other than 127.0.0.1 (command-line option)
27
- Revisions that do not change anything on the page are rejected
28
- Automated tests for all controller actions
29
- category: lines are presented as links to "All Pages" for relevant categories
30
- Search looks at page titles, as well as content
31
- Multiple other usability enhancements and bug fixes
32
-
33
- * 0.9.2:
34
- Rollback takes the user to an edit form. The form has to be submitted for the change to
35
- take place.
36
- Changed to use inline style on published pages
37
- Fixed "forward in time" on the last revision before current page
38
- Instiki won't log bogus error messages when creating a new Wiki
39
- Fixed deprecation warning for Object.id (introduced in Ruby 1.8.2)
40
- Madeleine upgraded to 0.7.1
41
- Madeleine snapshots are compressed
42
- Packaged as a gem
43
-
44
- * 0.9.1:
45
- Added performance improvements for updating existing pages
46
- Fixed IP logging and RSS feeds behind proxies [With help from Guan Yang]
47
- Fixed default storage directory (borked running on Windows) [Spotted by Curt Hibbs]
48
-
49
- * 0.9.0:
50
- Added aliased links such as [[HomePage|that nice home page]] [Mark Reid]
51
- Added include other page content with [[!include TableOfContents]] [Mark Reid]
52
- Added delete orphan pages from the Edit Web screen [by inspiration from Simon Arnaud]
53
- Added logging of IP address for authors (who's behind the rollback wars)
54
- Added Categories pages through backlinks (use "categories: news, instiki" on start of line) [Mark Reid]
55
- Added option to use bracket-style wiki links only (and hence ban WikiWords)
56
- Added command-line option to specify different storage path
57
- Added print view without navigation
58
- Added character and page (2275 characters including spaces) counter (important for student papers)
59
- Off by default, activate it on the Edit Web screen
60
- Added LaTeX/PDF integration on Textile installations with pdflatex installed on system (EXPERIMENTAL)
61
- Use the home page as a table of contents with a unordered list to control sections
62
- Added limit of 15 to the number of pages included in RSS feed
63
- Moved static parts of stylesheet to separate file [Lau T�rnskov]
64
- Fixed better semantics for revision movement [Ryan Singer]
65
- Fixed color diffs to work much better [Xen/Mertz/Atkins]
66
- Fixed performance problems for All Pages list [Dennis Mertz]
67
- Fixed lots of rendering bugs [Mark Reid]
68
- Upgraded to RedCloth 2.0.11 [integrating the fine work of Dennis Mertz]
69
-
70
- * 0.8.9:
71
- Added color diffs to see changes between revisions [Bill Atkins]
72
- They're aren't quite perfect yet as new paragraphs split the <ins> tags (hence 0.8.9, not 0.9.0)
73
- Added redirect to edit if content of page generates an error
74
- (so the page doesn't become unusable on bugs in the markup engines)
75
- Fixed update Web with different address bug [Denis Metz]
76
- Fixed a bunch of wiki word rendering issues by doing wiki word detection and replacment at once
77
- Upgraded to BlueCloth 0.0.3b (should fix loads of problems on Markdown wikis)
78
-
79
- * 0.8.5:
80
- Instiki can now serve as a CMS by running a password-protected web with a published front
81
- Added version check at startup (Instiki needs Ruby 1.8.1)
82
-
83
- * 0.8.1:
84
- Actually included RedCloth 2.0.7 in the release
85
-
86
- * 0.8.0:
87
- NOTE: Single-web wikis created in versions prior to 0.8.0 have "instiki" as their system password
88
- Accepts wiki words in bracket style. Ex: [[wiki word]], [[c]], [[We could'nt have done it!]]
89
- Accepts camel-case wiki words in all latin, greek, cyrillian, and armenian unicode characters
90
- Many thanks to Guan Yang for building the higher- and lower-case lookup tables
91
- And thanks to Simon Arnaud for the initial patch that got the work started
92
- Changed charset to UTF-8
93
- Cut down on command-line options and replaced them with an per-web config screen
94
- Added option to extend the stylesheet on a per-web basis to tweak the look in details
95
- Added simple color options for variety
96
- Added option to add/remove password protection on each web
97
- Added the wiki name of the author locking a given page (instead of just "someone")
98
- Removed single/multi-web distinction -- all Instikis are now multi-web
99
- Load libraries from an unshifted load path, so that old installed libraries doesn't clash [Emiel van de Laar]
100
- Keeps the author cookie forever, so you don't have to enter your name again and again
101
- Fixed XHTML so it validates [Bruce D'Arcus]
102
- Authors are no longer listed under orphan pages
103
- Added export to markup (great for backups, potentially for switching wiki engine)
104
- Don't link wiki words that proceeds from either /, = or ?
105
- (http://c2.com/cgi/wiki?WikiWikiClones, /show/HomePage, cgi.pl?show=WikiWord without escaping)
106
- Accessing an unexisting page redirects to a different url (/new/PageName)
107
- Increased snapshot time to just once a day (cuts down on disk storage requirements)
108
- Made RDoc support work better with 1.8.1 [Mauricio Fern�ndez]
109
- Added convinient redirect from /wiki/ to /wiki/show/HomePage
110
- Fixed BlueCloth bug with backticks at start of line
111
- Updated to RedCloth 2.0.7 (and linked to the new Textile reference)
112
-
113
- * 0.7.0:
114
- Added Markdown (BlueCloth) and RDoc [Mauricio Fern�ndez] as command-line markup choices
115
- Added wanted and orphan page lists to All pages (only show up if there's actually orphan or wanted pages)
116
- Added ISO-8859-1 as XML encoding in RSS feeds (makes FeedReader among others happy for special entities)
117
- Added proper links in the RSS feed (but the body links are still relative, which NNW and others doesn't grok)
118
- Added access keys: E => Edit, H => HomePage, A => All Pages, U => Recently Revised, X => Export
119
- Added password-login through URL (so you can subscribe to feed on a protected web)
120
- Added web passwords to the feed links for protected webs, so they work without manual login
121
- Added the web name in small letters above all pages within a web
122
- Polished authors and recently revised
123
- Updated to RedCloth 2.0.6
124
- Changed content type for RSS feeds to text/xml (makes Mozilla Aggreg8 happy)
125
- Changed searching to be case insensitive
126
- Changed HomePage to display the name of the web instead
127
- Changed exported HTML pages to be valid XHTML (which can be preprocessed by XSLT)
128
- Fixed broken recently revised
129
-
130
- * 0.6.0:
131
- Fixed Windows compatibility [Florian]
132
- Fixed bug that would prevent Madeleine from taking snapshots in Daemon mode
133
- Added export entire web as HTML in a zip file
134
- Added RSS feeds
135
- Added proper getops support for the growing number of options [Florian]
136
- Added safe mode that forbids style options in RedCloth [Florian]
137
- Updated RedCloth to 2.0.5
138
-
139
- * 0.5.0:
140
- NOTE: 0.5.0 is NOT compatible with databases from earlier versions
141
- Added revisions
142
- Added multiple webs
143
- Added password protection for webs on multi-web setups
144
- Added the notion of authors (that are saved in a cookie)
145
- Added command-line option for not running as a Daemon on Unix
146
-
147
- * 0.3.1:
148
- Added option to escape wiki words with \
149
-
150
- * 0.3.0:
151
- Brought all files into common style (including Textile help on the edit page)
152
- Added page locking (if someone already is editing a page there's a warning)
153
- Added daemon abilities on Unix (keep Instiki running after you close the terminal)
154
- Made port 2500 the default port, so Instiki can be launched by dobbelt-click
155
- Added Textile cache to speed-up rendering of large pages
156
- Made WikiWords look like "Wiki Words"
157
- Updated RedCloth to 2.0.4
158
-
159
- * 0.2.5:
160
- Upgraded to RedCloth 2.0.2 and Madeleine 0.6.1, which means the
161
- Windows problems are gone. Also fixed a problem with wikiwords
162
- that used part of other wikiwords.
163
-
164
- * 0.2.0:
165
- First public release
1
+ * 0.10.1:
2
+ Upgraded Rails to 0.12.0
3
+ Upgraded rubyzip to version 0.5.8
4
+ BlueCloth is back (RedCloth didn't do pure Markdown well enough)
5
+ Handling of line breaks in Textile is as in 0.9 (inserts <br/> tag)
6
+ Fixed HTML export (to enclose the output in <html> tags, include the stylesheet etc)
7
+ Corrected some compatibility issues with storages from earlier Instiki versions
8
+ Some other bug fixes
9
+
10
+ * 0.10.0:
11
+ Ported to ActionPack
12
+ RedCloth 3.0.3
13
+ BlueCloth is phased out, Markdown is rendered by RedCloth
14
+ Mix markup option understands both Textile and Markdown on the same page
15
+ Instiki can serve static content (such as HTML or plain-text files) from ./public
16
+ directory
17
+ Much friendlier admin interface
18
+ Wiki link syntax doesn't conflict with Textile hyperlink syntax. Therefore
19
+ "textile link":LinkToSomePlace will not look insane.
20
+ RSS feeds accept query parameters, sush as
21
+ http://localhost:2500/wiki/rss_with_headlines?start=2005-02-18&end=2005-02-19&limit=10
22
+ RSS feed with page contents for a password-protected web behaves as follows:
23
+ if the web is published, RSS feed links to the published version of the web
24
+ otherwise, the feed is not available
25
+ Madeleine will check every hour if there are new commands in the log or 24 hours have
26
+ passed since last snapshot, and take snapshot if either of these conditions is true
27
+ Madeleine will also not log read-only operations, resulting in a better performance
28
+ Wiki extracts (to HTML and plain text) will leave only the last extract file in ./storage
29
+ Wiki search handles multibyte (UTF-8) characters correctly
30
+ Local hyperlinks in published pages point to published pages [Michael DeHaan]
31
+ Fixed a bug that sometimes caused all past revisions of a page to be "forgotten" on
32
+ restart
33
+ Fixed parsing of URIs with a port number (http://someplace.org:8080)
34
+ Instiki will not fork itself on a *nix, unless explicitly asked to
35
+ Instiki can bind to IPs other than 127.0.0.1 (command-line option)
36
+ Revisions that do not change anything on the page are rejected
37
+ Automated tests for all controller actions
38
+ category: lines are presented as links to "All Pages" for relevant categories
39
+ Search looks at page titles, as well as content
40
+ Multiple other usability enhancements and bug fixes
41
+
42
+ * 0.9.2:
43
+ Rollback takes the user to an edit form. The form has to be submitted for the change to
44
+ take place.
45
+ Changed to use inline style on published pages
46
+ Fixed "forward in time" on the last revision before current page
47
+ Instiki won't log bogus error messages when creating a new Wiki
48
+ Fixed deprecation warning for Object.id (introduced in Ruby 1.8.2)
49
+ Madeleine upgraded to 0.7.1
50
+ Madeleine snapshots are compressed
51
+ Packaged as a gem
52
+
53
+ * 0.9.1:
54
+ Added performance improvements for updating existing pages
55
+ Fixed IP logging and RSS feeds behind proxies [With help from Guan Yang]
56
+ Fixed default storage directory (borked running on Windows) [Spotted by Curt Hibbs]
57
+
58
+ * 0.9.0:
59
+ Added aliased links such as [[HomePage|that nice home page]] [Mark Reid]
60
+ Added include other page content with [[!include TableOfContents]] [Mark Reid]
61
+ Added delete orphan pages from the Edit Web screen [by inspiration from Simon Arnaud]
62
+ Added logging of IP address for authors (who's behind the rollback wars)
63
+ Added Categories pages through backlinks (use "categories: news, instiki" on start of line) [Mark Reid]
64
+ Added option to use bracket-style wiki links only (and hence ban WikiWords)
65
+ Added command-line option to specify different storage path
66
+ Added print view without navigation
67
+ Added character and page (2275 characters including spaces) counter (important for student papers)
68
+ Off by default, activate it on the Edit Web screen
69
+ Added LaTeX/PDF integration on Textile installations with pdflatex installed on system (EXPERIMENTAL)
70
+ Use the home page as a table of contents with a unordered list to control sections
71
+ Added limit of 15 to the number of pages included in RSS feed
72
+ Moved static parts of stylesheet to separate file [Lau T�rnskov]
73
+ Fixed better semantics for revision movement [Ryan Singer]
74
+ Fixed color diffs to work much better [Xen/Mertz/Atkins]
75
+ Fixed performance problems for All Pages list [Dennis Mertz]
76
+ Fixed lots of rendering bugs [Mark Reid]
77
+ Upgraded to RedCloth 2.0.11 [integrating the fine work of Dennis Mertz]
78
+
79
+ * 0.8.9:
80
+ Added color diffs to see changes between revisions [Bill Atkins]
81
+ They're aren't quite perfect yet as new paragraphs split the <ins> tags (hence 0.8.9, not 0.9.0)
82
+ Added redirect to edit if content of page generates an error
83
+ (so the page doesn't become unusable on bugs in the markup engines)
84
+ Fixed update Web with different address bug [Denis Metz]
85
+ Fixed a bunch of wiki word rendering issues by doing wiki word detection and replacment at once
86
+ Upgraded to BlueCloth 0.0.3b (should fix loads of problems on Markdown wikis)
87
+
88
+ * 0.8.5:
89
+ Instiki can now serve as a CMS by running a password-protected web with a published front
90
+ Added version check at startup (Instiki needs Ruby 1.8.1)
91
+
92
+ * 0.8.1:
93
+ Actually included RedCloth 2.0.7 in the release
94
+
95
+ * 0.8.0:
96
+ NOTE: Single-web wikis created in versions prior to 0.8.0 have "instiki" as their system password
97
+ Accepts wiki words in bracket style. Ex: [[wiki word]], [[c]], [[We could'nt have done it!]]
98
+ Accepts camel-case wiki words in all latin, greek, cyrillian, and armenian unicode characters
99
+ Many thanks to Guan Yang for building the higher- and lower-case lookup tables
100
+ And thanks to Simon Arnaud for the initial patch that got the work started
101
+ Changed charset to UTF-8
102
+ Cut down on command-line options and replaced them with an per-web config screen
103
+ Added option to extend the stylesheet on a per-web basis to tweak the look in details
104
+ Added simple color options for variety
105
+ Added option to add/remove password protection on each web
106
+ Added the wiki name of the author locking a given page (instead of just "someone")
107
+ Removed single/multi-web distinction -- all Instikis are now multi-web
108
+ Load libraries from an unshifted load path, so that old installed libraries doesn't clash [Emiel van de Laar]
109
+ Keeps the author cookie forever, so you don't have to enter your name again and again
110
+ Fixed XHTML so it validates [Bruce D'Arcus]
111
+ Authors are no longer listed under orphan pages
112
+ Added export to markup (great for backups, potentially for switching wiki engine)
113
+ Don't link wiki words that proceeds from either /, = or ?
114
+ (http://c2.com/cgi/wiki?WikiWikiClones, /show/HomePage, cgi.pl?show=WikiWord without escaping)
115
+ Accessing an unexisting page redirects to a different url (/new/PageName)
116
+ Increased snapshot time to just once a day (cuts down on disk storage requirements)
117
+ Made RDoc support work better with 1.8.1 [Mauricio Fern�ndez]
118
+ Added convinient redirect from /wiki/ to /wiki/show/HomePage
119
+ Fixed BlueCloth bug with backticks at start of line
120
+ Updated to RedCloth 2.0.7 (and linked to the new Textile reference)
121
+
122
+ * 0.7.0:
123
+ Added Markdown (BlueCloth) and RDoc [Mauricio Fern�ndez] as command-line markup choices
124
+ Added wanted and orphan page lists to All pages (only show up if there's actually orphan or wanted pages)
125
+ Added ISO-8859-1 as XML encoding in RSS feeds (makes FeedReader among others happy for special entities)
126
+ Added proper links in the RSS feed (but the body links are still relative, which NNW and others doesn't grok)
127
+ Added access keys: E => Edit, H => HomePage, A => All Pages, U => Recently Revised, X => Export
128
+ Added password-login through URL (so you can subscribe to feed on a protected web)
129
+ Added web passwords to the feed links for protected webs, so they work without manual login
130
+ Added the web name in small letters above all pages within a web
131
+ Polished authors and recently revised
132
+ Updated to RedCloth 2.0.6
133
+ Changed content type for RSS feeds to text/xml (makes Mozilla Aggreg8 happy)
134
+ Changed searching to be case insensitive
135
+ Changed HomePage to display the name of the web instead
136
+ Changed exported HTML pages to be valid XHTML (which can be preprocessed by XSLT)
137
+ Fixed broken recently revised
138
+
139
+ * 0.6.0:
140
+ Fixed Windows compatibility [Florian]
141
+ Fixed bug that would prevent Madeleine from taking snapshots in Daemon mode
142
+ Added export entire web as HTML in a zip file
143
+ Added RSS feeds
144
+ Added proper getops support for the growing number of options [Florian]
145
+ Added safe mode that forbids style options in RedCloth [Florian]
146
+ Updated RedCloth to 2.0.5
147
+
148
+ * 0.5.0:
149
+ NOTE: 0.5.0 is NOT compatible with databases from earlier versions
150
+ Added revisions
151
+ Added multiple webs
152
+ Added password protection for webs on multi-web setups
153
+ Added the notion of authors (that are saved in a cookie)
154
+ Added command-line option for not running as a Daemon on Unix
155
+
156
+ * 0.3.1:
157
+ Added option to escape wiki words with \
158
+
159
+ * 0.3.0:
160
+ Brought all files into common style (including Textile help on the edit page)
161
+ Added page locking (if someone already is editing a page there's a warning)
162
+ Added daemon abilities on Unix (keep Instiki running after you close the terminal)
163
+ Made port 2500 the default port, so Instiki can be launched by dobbelt-click
164
+ Added Textile cache to speed-up rendering of large pages
165
+ Made WikiWords look like "Wiki Words"
166
+ Updated RedCloth to 2.0.4
167
+
168
+ * 0.2.5:
169
+ Upgraded to RedCloth 2.0.2 and Madeleine 0.6.1, which means the
170
+ Windows problems are gone. Also fixed a problem with wikiwords
171
+ that used part of other wikiwords.
172
+
173
+ * 0.2.0:
174
+ First public release
data/README CHANGED
@@ -1,68 +1,68 @@
1
- ===What is Instiki?
2
-
3
- Admitted, it's YetAnotherWikiClone[http://c2.com/cgi/wiki?WikiWikiClones], but with a strong focus
4
- on simplicity of installation and running:
5
-
6
- Step 1. Download
7
-
8
- Step 2. Run "instiki"
9
-
10
- Step 3. Chuckle... "There's no step three!" (TM)
11
-
12
- You're now running a perfectly suitable wiki on port 2500
13
- that'll present you with one-step setup, followed by a textarea for the home page
14
- on http://localhost:2500.
15
-
16
- Instiki lowers the barriers of interest for when you might consider
17
- using a wiki. It's so simple to get running that you'll find yourself
18
- using it for anything -- taking notes, brainstorming, organizing a
19
- gathering.
20
-
21
- ===Features:
22
- * Regular expression search: Find deep stuff really fast
23
- * Revisions: Follow the changes on every page from birth. Rollback to an earlier rev
24
- * Export to HTML or markup in a zip: Take the entire wiki with you home or for reference
25
- * RSS feeds to track recently revised pages
26
- * Multiple webs: Create separate wikis with their own namespace
27
- * Password-protected webs: Keep it private
28
- * Authors: Each revision is associated with an author, so you can see who changed what
29
- * Reference tracker: Which other pages are pointing to the current?
30
- * Speed: Using Madelein[http://madeleine.sourceforge.net] for persistence (all pages are in memory)
31
- * Three markup choices: Textile[http://www.textism.com/tools/textile]
32
- (default / RedCloth[http://www.whytheluckystiff.net/ruby/redcloth]),
33
- Markdown (BlueCloth[http://bluecloth.rubyforge.org]), and RDoc[http://rdoc.sourceforge.net/doc]
34
- * Embedded webserver: Through WEBrick[http://www.webrick.org]
35
- * Internationalization: Wiki words in any latin, greek, cyrillian, or armenian characters
36
- * Color diffs: Track changes through revisions
37
-
38
- ===Missing:
39
- * File attachments
40
-
41
- ===Install from gem:
42
- * Install rubygems
43
- * Run "gem install instiki"
44
- * Change to a directory where you want Instiki to keep its data files (for example, ~/instiki/)
45
- * Run "instiki" - this will create a "storage" directory (for example, ~/instiki/storage), and start a new Wiki service
46
-
47
- Make sure that you always launch Instiki from the same working directory, or specify the storage directory in runtime parameters, such as:
48
- instiki --storage ~/instiki/storage
49
-
50
- ===Command-line options:
51
- * Run "instiki --help"
52
-
53
- ===History:
54
- * See CHANGELOG
55
-
56
- ===Download latest from:
57
- * http://rubyforge.org/project/showfiles.php?group_id=186
58
-
59
- ===Visit the official Instiki wiki:
60
- * http://www.instiki.org
61
-
62
- ===License:
63
- * same as Ruby's
64
-
65
- ---
66
- Author:: David Heinemeier Hansson
67
- Email:: david@loudthinking.com
68
- Weblog:: http://www.loudthinking.com
1
+ ===What is Instiki?
2
+
3
+ Admitted, it's YetAnotherWikiClone[http://c2.com/cgi/wiki?WikiWikiClones], but with a strong focus
4
+ on simplicity of installation and running:
5
+
6
+ Step 1. Download
7
+
8
+ Step 2. Run "instiki"
9
+
10
+ Step 3. Chuckle... "There's no step three!" (TM)
11
+
12
+ You're now running a perfectly suitable wiki on port 2500
13
+ that'll present you with one-step setup, followed by a textarea for the home page
14
+ on http://localhost:2500.
15
+
16
+ Instiki lowers the barriers of interest for when you might consider
17
+ using a wiki. It's so simple to get running that you'll find yourself
18
+ using it for anything -- taking notes, brainstorming, organizing a
19
+ gathering.
20
+
21
+ ===Features:
22
+ * Regular expression search: Find deep stuff really fast
23
+ * Revisions: Follow the changes on every page from birth. Rollback to an earlier rev
24
+ * Export to HTML or markup in a zip: Take the entire wiki with you home or for reference
25
+ * RSS feeds to track recently revised pages
26
+ * Multiple webs: Create separate wikis with their own namespace
27
+ * Password-protected webs: Keep it private
28
+ * Authors: Each revision is associated with an author, so you can see who changed what
29
+ * Reference tracker: Which other pages are pointing to the current?
30
+ * Speed: Using Madelein[http://madeleine.sourceforge.net] for persistence (all pages are in memory)
31
+ * Three markup choices: Textile[http://www.textism.com/tools/textile]
32
+ (default / RedCloth[http://www.whytheluckystiff.net/ruby/redcloth]),
33
+ Markdown (BlueCloth[http://bluecloth.rubyforge.org]), and RDoc[http://rdoc.sourceforge.net/doc]
34
+ * Embedded webserver: Through WEBrick[http://www.webrick.org]
35
+ * Internationalization: Wiki words in any latin, greek, cyrillian, or armenian characters
36
+ * Color diffs: Track changes through revisions
37
+
38
+ ===Missing:
39
+ * File attachments
40
+
41
+ ===Install from gem:
42
+ * Install rubygems
43
+ * Run "gem install instiki"
44
+ * Change to a directory where you want Instiki to keep its data files (for example, ~/instiki/)
45
+ * Run "instiki" - this will create a "storage" directory (for example, ~/instiki/storage), and start a new Wiki service
46
+
47
+ Make sure that you always launch Instiki from the same working directory, or specify the storage directory in runtime parameters, such as:
48
+ instiki --storage ~/instiki/storage
49
+
50
+ ===Command-line options:
51
+ * Run "instiki --help"
52
+
53
+ ===History:
54
+ * See CHANGELOG
55
+
56
+ ===Download latest from:
57
+ * http://rubyforge.org/project/showfiles.php?group_id=186
58
+
59
+ ===Visit the official Instiki wiki:
60
+ * http://www.instiki.org
61
+
62
+ ===License:
63
+ * same as Ruby's
64
+
65
+ ---
66
+ Author:: David Heinemeier Hansson
67
+ Email:: david@loudthinking.com
68
+ Weblog:: http://www.loudthinking.com